.menu h1 {
    font-family: 'Abiyan', cursive;
    padding: 5px;
    text-align: center;
}

.bodycare {
    font-family: 'Abiyan', cursive;
    padding: 5px;
    text-align: center;
   
}
.bodycare ul {
    margin: 0; 
    padding: 0;
}

.bodycare li {
    list-style-type: none; /* リストマーカーを消す */
    margin-bottom: 20px; /* 各メニューアイテムの間隔 */
    padding-bottom: 100px; /* 下線とテキストの間隔 */
}

.menu {
    padding: 10px;
    text-align: center;
    font-family: 'Abiyan', cursive;
}

.bodycare {
    position: relative;
    padding:0.25em 1em;
}
.bodycare:before,.bodycare:after{ 
    content:'';
    width: 20px;
    height: 30px;
    position: absolute;
    display: inline-block;
}
.bodycare:before{
    border-left: solid 1px #5767bf;
    border-top: solid 1px #5767bf;
    top:0;
    left: 0;
}
.bodycare:after{
    border-right: solid 1px #5767bf;
    border-bottom: solid 1px #5767bf;
    bottom:0;
    right: 0;
}
.bodycare p {
    margin: 0; 
    padding: 0;
}
.Ab ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;             /* 横並びにする */
    justify-content: center;   /* 中央揃え */
    align-items: flex-start;   /* 上揃え（必要に応じて） */
    gap: 30px;                 /* 各メニューの間隔 */
}

.Ab ul {
    display: flex;
    justify-content: center;  /* 全体を中央に */
    gap: 60px;                /* 各 li の間隔 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.Ab li {
    text-align: center;        /* 中のテキストを中央に */
}

.Ab a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    display: block;
}

.Ab .my {
    font-size: 0.8em;
    color: #666;
    margin-top: 4px;
}